home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / pibterm / pibt41s3.arc / PT4INIT.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1988-01-31  |  1.3 KB  |  40 lines

  1. UNIT PT4INIT;
  2.  
  3. INTERFACE
  4.  
  5. USES
  6.    Dos, Crt, GlobType, GlobRout, StringMan, PibAsync, PibTimer,
  7.    PT4SETP, PT4SCRI;
  8.  
  9. (* EXPORTS *)
  10.    PROCEDURE Set_Defaults;
  11.    FUNCTION  Read_Config_File : BOOLEAN;
  12.    PROCEDURE Initialize_Communications;
  13.    PROCEDURE Test_Version_Warning;
  14.    PROCEDURE Get_Other_Files;
  15.    PROCEDURE Allocate_Dial_And_Review;
  16.    PROCEDURE Set_Other_Parameters;
  17.  
  18. IMPLEMENTATION
  19.                                    (* Initialize modem                *)
  20. {$I INITMODE.MOD }
  21.                                    (* Initialize printer              *)
  22. {$I INITPRIN.MOD }
  23.                                    (* Set defaults for program        *)
  24. {$I SETDEFAU.MOD }
  25.                                    (* Initialize serial port          *)
  26. {$I INITCOMM.MOD }
  27.                                    (* Display version warning         *)
  28. {$I TESTVERW.MOD }
  29.                                    (* Read primary config. file       *)
  30. {$I READCONF.MOD }
  31.                                    (* Allocate dial, review buffer    *)
  32. {$I ALOCDIRV.MOD }
  33.                                    (* Read other config. files        *)
  34. {$I GETOTHER.MOD }
  35.                                    (* Set other parameters at init    *)
  36. {$I SETOPAR.MOD  }
  37.  
  38. END   (* PT4INIT *).
  39.  
  40.